home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr22 / forall.zip / FILE_ID.DIZ next >
Text File  |  1993-05-01  |  778b  |  12 lines

  1. ForAll - a DOS utility for executing a command on a group of files.
  2.  
  3. This is a small utility program which simplifies operations on multiple
  4. files.  In combination with the DOS 'dir' command, it can be a very 
  5. powerful tool for automating repetitive tasks.  For example, let's say
  6. you want to delete all the '.obj' files your favorite compiler has left
  7. lying around.  The DOS command line 'dir /s/b *.obj > objfiles.lst' will
  8. create a file called 'objfiles.lst', which has a brief listing, recursed
  9. through all subdirectories under the current directory, of all the object
  10. files.  You can then 'type' this file, and if it doesn't have anything
  11. you want to keep, just say 'FORALL OBJFILES.LST DEL' and this utility
  12. will call the DOS delete command on the named files.